home *** CD-ROM | disk | FTP | other *** search
/ The Business Master (3rd Edition) / The Business Master (3rd Edition).iso / files / utilstem / superbat / page3.doc < prev    next >
Encoding:
Text File  |  1988-05-11  |  736 b   |  25 lines

  1.                                ┌──────────────┐
  2.                                │ ANSWER   COM │
  3.                                └──────────────┘
  4.  
  5.               This one has my vote for the handiest batch file
  6.           utility of all time. ANSWER.COM will allow you to prompt
  7.           for a string of text and then act on that string. For
  8.           example:
  9.  
  10.           echo off
  11.           cls
  12.           answer What is the name of the file you wish to copy?
  13.           set file=%answer%
  14.           answer Where do you wish to copy it?
  15.           copy %file% %answer%
  16.  
  17.               In this example %answer% is the dos envrionment
  18.           variable that is set by ANSWER.COM. This utility is
  19.           awesome!
  20.  
  21.  
  22.  
  23.  
  24.  
  25.